UpdatedMap

interface UpdatedMap<K, V> : MapChange<K, V> , MapChangeSet<K>

RealmMap flow event that describes that an update has been performed on the observed map. It provides a reference to the updated map and a number of properties that describe the changes performed on the map.

Properties

changes
Link copied to clipboard
abstract val changes: Array<K>
The keys whose values have changed in this version of the map.
deletions
Link copied to clipboard
abstract val deletions: Array<K>
The keys that have been deleted in this version of the map.
insertions
Link copied to clipboard
abstract val insertions: Array<K>
The keys that have been inserted in this version of the map.
map
Link copied to clipboard
abstract val map: RealmMap<K, V>